From: Nick Roberts Date: Wed, 30 Dec 2009 06:53:47 +0000 (+1300) Subject: (vc-hg-working-revision): Tweak previous change. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~324^2~8828 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=14fe7867e137d1360a26b39f020057e21df2fd9a;p=emacs.git (vc-hg-working-revision): Tweak previous change. --- diff --git a/lisp/vc-hg.el b/lisp/vc-hg.el index 9dc1d380b0a..34a7806b8a8 100644 --- a/lisp/vc-hg.el +++ b/lisp/vc-hg.el @@ -209,11 +209,11 @@ If nil, use the value of `vc-diff-switches'. If t, use no switches." ;; Ignore all errors. (process-file "hg" nil t nil - "parent" "--template" "\"{rev}\"" (file-relative-name file))) + "parent" "--template" "{rev}" (file-relative-name file))) ;; Some problem happened. E.g. We can't find an `hg' ;; executable. (error nil))))))) - (when (eq 0 status) (read out)))) + (when (eq 0 status) out))) ;;; History functions